home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Amiga Club Hoorn / ACH ClubDiskette No.23 (1995-04)(Amiga Club Hoorn)(NL).zip / ACH ClubDiskette No.23 (1995-04)(Amiga Club Hoorn)(NL).adf / Utilitie / Fast-mem < prev    next >
Text File  |  1995-03-25  |  432b  |  19 lines

  1. ; $VER: Make-FastMen V2.0 (07.11.93) Author: S. Kindervater
  2.  
  3. requestchoice >ENV:Fastmem "Make-FastMem" "Select the amount of Memory*n      You wish to use" "1MB|0.5MB|NOMEM"
  4.  
  5. if val $Fastmem EQ 1
  6.   echo "Creating 1 MegaByte Fast Memory..."
  7.    makefast 1024000
  8.   Skip End 
  9. endif
  10.  
  11. if val $Fastmem EQ 2
  12.  echo "Creating 0.5 MegaByte Fast Memory..."
  13.    makefast 512000
  14.    Skip end
  15.   else
  16.  Skip end
  17. endif
  18. lab end 
  19. Delete env:Fastmem >NIL: